/* Mobile Marketing Section Styles */
.mobile-marketing-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.mobile-marketing-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('wave-pattern.png');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.content-left {
    flex: 0 1 45%;
    padding-right: 2rem;
}

.content-left h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.content-left h2::before {
    display: none;
}

.content-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
}

.request-callback {
    background: #009688;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 150, 136, 0.2);
}

.request-callback:hover {
    background: #00897b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 136, 0.3);
}

.content-right {
    flex: 0 1 55%;
    position: relative;
}

.laptop-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
}

.laptop-front {
    width: auto;
    height: 100%;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.laptop-side {
    width: auto;
    height: 100%;
    position: absolute;
    right: -20%;
    z-index: 1;
    transform: perspective(1000px) rotateY(25deg);
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.laptop-container:hover .laptop-front {
    transform: perspective(1000px) rotateY(0deg);
}

.laptop-container:hover .laptop-side {
    transform: perspective(1000px) rotateY(20deg);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .content-left h2 {
        font-size: 2.5rem;
    }

    .laptop-container {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .mobile-marketing-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .content-left {
        flex: 0 1 100%;
        padding-right: 0;
    }

    .content-right {
        flex: 0 1 100%;
    }

    .content-left h2 {
        font-size: 2.2rem;
    }

    .content-left p {
        margin: 0 auto 2rem;
    }

    .laptop-container {
        height: 300px;
    }

    .laptop-side {
        right: -10%;
    }
}

@media (max-width: 768px) {
    .mobile-marketing-section {
        padding: 60px 0;
    }

    .content-left h2 {
        font-size: 1.8rem;
    }

    .content-left p {
        font-size: 1rem;
    }

    .laptop-container {
        height: 250px;
    }

    .laptop-side {
        display: none;
    }

    .request-callback {
        padding: 0.8rem 1.6rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mobile-marketing-section {
        padding: 40px 0;
    }

    .content-left h2 {
        font-size: 1.6rem;
    }

    .content-left p {
        font-size: 0.95rem;
    }

    .laptop-container {
        height: 200px;
    }

    .request-callback {
        width: 100%;
        max-width: 300px;
    }
}

/* Video Section Styles */
.video-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    width: 100%;
    max-width: 800px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 2rem;
    color: #0066FF;
    margin-left: 5px; /* Offset to center the play icon visually */
}

.play-button:hover {
    background: #0066FF;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button:hover i {
    color: white;
}

.video-text {
    text-align: center;
    max-width: 600px;
}

.video-text h2 {
    font-size: 2.2rem;
    color: #2B2D42;
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Video Section Responsive Styles */
@media (max-width: 992px) {
    .video-section {
        padding: 60px 0;
    }

    .video-text h2 {
        font-size: 1.8rem;
    }

    .video-text p {
        font-size: 1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }

    .video-wrapper {
        border-radius: 15px;
    }

    .video-wrapper video {
        border-radius: 15px;
    }

    .video-text h2 {
        font-size: 1.5rem;
    }

    .video-text p {
        font-size: 0.9rem;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 30px 0;
    }

    .video-wrapper {
        border-radius: 10px;
    }

    .video-wrapper video {
        border-radius: 10px;
    }

    .video-text {
        padding: 0 1rem;
    }

    .video-text h2 {
        font-size: 1.3rem;
    }
}

/* Strategies Section */
.strategies-section {
    padding: 80px 0;
    background: #fff;
}

.strategies-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.strategies-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* Button styling specific to strategies section */
.strategies-section .request-callback {
    margin-top: 2rem;
    display: inline-block;
    background: #009688;
    color: white;
    padding: 0.8rem 1.6rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 150, 136, 0.2);
}

.strategies-section .request-callback:hover {
    background: #00897b;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 150, 136, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2rem;
    color: #009688;
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #009688;
    border-radius: 2px;
}

.section-header p {
    font-size: 1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.strategies-list {
    flex: 0 1 50%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.strategy-item {
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.strategy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strategy-item h3 {
    font-size: 1.3rem;
    color: #009688;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-left: 1.2rem;
}

.strategy-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #009688;
    border-radius: 2px;
}

.strategy-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.strategies-illustration {
    flex: 0 1 50%;
    position: relative;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #fff;
    border-radius: 30px;
    position: relative;
    margin: 0 auto;
    border: 10px solid #333;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-icons .icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    animation: float 3s infinite ease-in-out;
}

.icon.instagram {
    background: #E1306C;
    top: 10%;
    right: -50px;
    animation-delay: 0.5s;
}

.icon.facebook {
    background: #1877F2;
    top: 30%;
    left: -50px;
    animation-delay: 0.8s;
}

.icon.share {
    background: #25D366;
    top: 50%;
    right: -40px;
    animation-delay: 1.2s;
}

.icon.rss {
    background: #FF4500;
    bottom: 30%;
    left: -45px;
    animation-delay: 1.5s;
}

.icon.email {
    background: #EA4335;
    bottom: 10%;
    right: -35px;
    animation-delay: 1.8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .section-header h2 {
        font-size: 2.4rem;
    }

    .strategies-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .phone-frame {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 992px) {
    .strategies-content {
        flex-direction: column;
    }

    .strategies-list,
    .strategies-illustration {
        flex: 0 1 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .strategies-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .strategy-item h3 {
        font-size: 1.1rem;
    }

    .phone-frame {
        width: 200px;
        height: 400px;
        border-width: 8px;
    }

    .strategies-section .request-callback {
        margin-top: 1.5rem;
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .strategy-item {
        padding: 1rem;
    }

    .phone-frame {
        width: 180px;
        height: 360px;
        border-width: 6px;
    }

    .services-section .request-callback {
        margin-top: 1rem;
        padding: 0.7rem 1.4rem;
        font-size: 0.85rem;
        width: 80%;  /* Make button wider on mobile */
        max-width: 300px;  /* But not too wide */
    }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    color: #009688;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .strategies-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .transparency-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .transparency-content h2 {
        font-size: 1.5rem;
    }

    .transparency-section {
        padding: 0.5rem;
    }
}

.transparency-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6rem 4rem;
    overflow: hidden;
    background: #ffffff;
}

.transparency-content {
    flex: 0 1 50%;
    position: relative;
    z-index: 1;
    padding-right: 4rem;
}

.transparency-content h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
}

.transparency-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
}

.transparency-image {
    flex: 0 1 50%;
    position: relative;
    z-index: 1;
}

.laptop-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
}

.laptop-front {
    width: auto;
    height: 100%;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.laptop-side {
    width: auto;
    height: 100%;
    position: absolute;
    right: -20%;
    z-index: 1;
    transform: perspective(1000px) rotateY(25deg);
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.laptop-container:hover .laptop-front {
    transform: perspective(1000px) rotateY(0deg);
}

.laptop-container:hover .laptop-side {
    transform: perspective(1000px) rotateY(20deg);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .transparency-section {
        padding: 4rem 2rem;
    }

    .transparency-content h2 {
        font-size: 2.5rem;
    }

    .laptop-container {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .transparency-section {
        flex-direction: column;
        text-align: center;
        padding: 3rem 1.5rem;
    }

    .transparency-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .transparency-content h2 {
        font-size: 2.2rem;
    }

    .transparency-content p {
        margin: 0 auto;
    }

    .laptop-container {
        height: 300px;
    }

    .laptop-side {
        right: -10%;
    }
}

@media (max-width: 768px) {
    .transparency-section {
        padding: 2rem 1rem;
    }

    .transparency-content h2 {
        font-size: 1.8rem;
    }

    .laptop-container {
        height: 250px;
    }

    .laptop-side {
        display: none;
    }
}

@media (max-width: 480px) {
    .transparency-content h2 {
        font-size: 1.6rem;
    }

    .transparency-content p {
        font-size: 1rem;
    }

    .laptop-container {
        height: 200px;
    }
} 